home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / BORL_TIP / TI100 / TI113.ASC < prev    next >
Text File  |  1994-10-03  |  2KB  |  93 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.   PRODUCT  :  Pascal                                 NUMBER  :  113
  8.   VERSION  :  All
  9.        OS  :  DOS
  10.      DATE  :  September 30, 1994                       PAGE  :  1/2
  11.  
  12.     TITLE  :  INTERRUPT 3 PATCH
  13.  
  14.  
  15.  
  16.  
  17.  
  18. Turbo Pascal redefines the interrupt 3 vector to its own
  19. interrupt service routine used for handling Ctrl-C. However, the
  20. vector is permanently initialized to that interrupt routine even
  21. though the "U-" directive is specified.
  22.  
  23. This patch will permanently keep the Ctrl-C vector from being
  24. initialized, but will allow the use of DEBUG break points.
  25.  
  26. Use the DOS utility, DEBUG, to apply the following patch to a
  27. copy of your .COM file. Copy DEBUG.COM into the directory (or
  28. onto the diskette) where your working copy of .COM is located.
  29. At the DOS prompt, type the following information exactly as it
  30.  
  31. Note: 1.  DEBUG is not sensitive to upper and lower case. All
  32.           addresses  are listed in upper case for ease of
  33.           readability.
  34.  
  35.       2.  While in DEBUG, the prompt appears as a dash (-).
  36.  
  37.       3.  If you do not receive the appropriate response, press
  38.           "q", then <Enter>, to quit. Check your version numbers
  39.           and, if correct, try again.
  40.  
  41. For IBM versions of Turbo Pascal:
  42.  
  43. YOU TYPE              THIS APPEARS
  44.  
  45. DEBUG TURBO.COM          -
  46. e0BE2                    XXXX:0EB2 E8.
  47. 90<Space>            DC.
  48. 90<Space>            FD.
  49. 90<Enter>            -
  50. w<Enter>              writing xxxx bytes
  51. q<Enter>              DOS prompt
  52.  
  53.  
  54. For Generic versions of Turbo Pascal:
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.   PRODUCT  :  Pascal                                 NUMBER  :  113
  68.   VERSION  :  All
  69.        OS  :  DOS
  70.      DATE  :  September 30, 1994                       PAGE  :  2/2
  71.  
  72.     TITLE  :  INTERRUPT 3 PATCH
  73.  
  74.  
  75.  
  76.  
  77.  
  78. YOU TYPE              THIS APPEARS
  79.  
  80. DEBUG TURBO.COM          -
  81. e0922                    xxxx:0922 E8.
  82. 90<Space>            D1.
  83. 90<Space>            FD.
  84. 90<Enter>            -
  85. w<Enter>              writing xxxx bytes
  86. q<Enter>              DOS prompt
  87.  
  88.  
  89. DISCLAIMER: You have the right to use this technical information
  90. subject to the terms of the No-Nonsense License Statement that
  91. you received with the Borland product to which this information
  92. pertains.
  93.